如何在WordPress自定义当前时间格式
WordPress中有一个名为current_time()
的函数✈,用于处理当前本地时间。如果您将timestamp
设置为第一个参数,它将返回使用秒的当前时间戳。它还支持PHP日期格式字符串。请参见https://www.php.net/manual/en/datetime.format.php
以下是一些有用的PHP日期格式简短字符串:
Y
- Year(4 digits)y
- Year(2 digits)m
- Month(01-12)n
- Month(1-12)d
- Date(01-31)j
- Date(1-31)H
- Hour(00-23)h
- Hour(01-12)G
- Hour(1-23)g
- Hour(1-12)i
- Minute(01-59)s
- Second(01-59)
current_time示例
1 | current_time('Y-m-d H:i:s') |